home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-08-12 | 1.4 KB | 62 lines | [TEXT/CWIE] |
- /*
- #
- # File Name: sample LangEnglish.r
- #
- # Description: Resources for the sample JPEG converter than need to be localized.
- #
- # Written by: DMG
- #
- # Copyright: © 1998 by Apple Computer Incorporated. All Rights Reserved.
- #
- #
- # Change History (most recent first):
- #
- # 04/03/98 DMG457 For sample JPEG converter
- #
- #
- */
-
- #include "SysTypes.r"
- #include "Types.r"
- #include "sample JPEGConverterLib.h"
- #include "Debug.h"
- #include "Version.h"
-
- //rb824 Put correct verion into string.
- resource 'vers' (1, purgeable) {
- kMajorRev,
- kMinorRev,
- kReleaseStage,
- kNonRelease,
- verUS,
- kShortVersStr,
- kShortVersStr
- ", © 1998 Apple Computer Incorporated. All rights reserved."
-
- #if qDebug // lets see how we built it.
- kqDebug
- #endif
- #if qNames
- kqNames
- #endif
- };
-
- resource 'STR#' (JPEGCONVERTERSTRINGS_ID,
- #if qNames
- "sample JPEG Plugin Converter Strings",
- #endif
- purgeable)
- {
- {
- /* [1] kJPEGConverterName */
- "sample JPEG Downloader", // Converter Name.
- /* [2] kJPEGConverterInfoString */
- "This converter module converts JPEG data to DSC conforming PostScript output.", // Info string for the sample JPEG Converter.
- /* [3] kJPEGNoLevel1Msg */
- // This message is used if Level 1 output is required.
- "Generating Level 1 Compatible PostScript output with the sample JPEG Downloader is not possible.",
- /* [4] kJPEGBadDataMsg */
- "The image data depth or size cannot be supported by the sample JPEG Downloader."
- }
- };
-